home *** CD-ROM | disk | FTP | other *** search
/ Aminet 21 / Aminet 21 (1997)(GTI - Schatztruhe)[!][Oct 1997].iso / Aminet / util / rexx / InfraRexx.lha / InfraRexx / RexxEvent / RexxEvent.doc < prev    next >
Text File  |  1995-04-23  |  1KB  |  57 lines

  1. RexxEvent 1.21 - © 1995 by Leon Woestenberg
  2.  
  3. DISTRIBUTABILITY
  4.  
  5. Freeware. Said enuf.
  6.  
  7. DESCRIPTION
  8.  
  9. With this commodity, you can emulate inputevents, such as key presses,
  10. via ARexx. By sending a commodity-style input description string to
  11. RexxEvent's ARexx port `REXXEVENT', the corresponding input events will
  12. happen.
  13.  
  14. CHANGES
  15.  
  16. With this release, RexxEvent also handles strings that contain multiple
  17. event descriptions, each of them surrounded by angle brackets, i.e. < >.
  18.  
  19. USAGE
  20.  
  21. Just start from Shell or Workbench. Or from S:User-Startup or WBStartup
  22. if you please. There are no arguments. It's a windowless commodity, so
  23. restarting will kill it. Commodity exchange can be used to enable or
  24. disable functionality, or to kill it.
  25.  
  26. AREXX USAGE
  27.  
  28. Send commodity-style input description strings to the REXXEVENT port.
  29. Use double quotes around each string to keep prevent uppercasing and to
  30. have '<' and '>' parsed correctly. Sending `QUIT' will kill the commodity.
  31.  
  32. Refer to other documentation for a clear explanation of input
  33. descriptions. I would recommend the ToolManager documention by
  34. Stefan Becker. Thanks Stefan!
  35.  
  36. EXAMPLES
  37.  
  38. From the shell:
  39.  
  40. rx 'ADDRESS REXXEVENT "rawkey x"'
  41. rx 'ADDRESS REXXEVENT "rawkey numericpad enter"'
  42. rx 'ADDRESS REXXEVENT "<ctrl alt r>Only Amiga..."'
  43.  
  44. From an ARexx script:
  45.  
  46. /* SteerScala.rexx (Seems not to work, due to Scala) */
  47.  
  48. ADDRESS REXXEVENT
  49. "<rawkey numericpad 1><rawkey numericpad 0><rawkey numericpad enter>"
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.